blob: 74c221246910a79c8365ebcc417b023c1d95e9d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
import { getLayout } from '@components/Layouts/Layout';
import PostPreview from '@components/PostPreview/PostPreview';
import { t } from '@lingui/macro';
import { NextPageWithLayout } from '@ts/types/app';
import { ThematicProps } from '@ts/types/taxonomies';
import { loadTranslation } from '@utils/helpers/i18n';
import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next';
import { ParsedUrlQuery } from 'querystring';
import styles from '@styles/pages/Thematic.module.scss';
import {
getAllThematicsSlug,
getThematicBySlug,
} from '@services/graphql/queries';
const Thematic: NextPageWithLayout<ThematicProps> = ({ thematic }) => {
const getPostsList = () => {
return [...thematic.posts].reverse().map((post) => (
<li key={post.id} className={styles.item}>
<PostPreview post={post} titleLevel={3} />
</li>
));
};
return (
<article>
<header>
<h1>{thematic.title}</h1>
<div dangerouslySetInnerHTML={{ __html: thematic.intro }}></div>
</header>
<div dangerouslySetInnerHTML={{ __html: thematic.content }}></div>
{thematic.posts.length > 0 && (
<div>
<h2>{t`All posts in ${thematic.title}`}</h2>
<ol className={styles.list}>{getPostsList()}</ol>
</div>
)}
</article>
);
};
Thematic.getLayout = getLayout;
interface PostParams extends ParsedUrlQuery {
slug: string;
}
export const getStaticProps: GetStaticProps = async (
context: GetStaticPropsContext
) => {
const translation = await loadTranslation(
context.locale!,
process.env.NODE_ENV === 'production'
);
const { slug } = context.params as PostParams;
const thematic = await getThematicBySlug(slug);
const breadcrumbTitle = thematic.title;
return {
props: {
breadcrumbTitle,
thematic,
translation,
},
};
};
export const getStaticPaths: GetStaticPaths = async () => {
const allSlugs = await getAllThematicsSlug();
return {
paths: allSlugs.map((post) => `/thematique/${post.slug}`),
fallback: true,
};
};
export default Thematic;
|